home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 10868 / 10868.xpi / chrome / sync.jar / content / generic-change.xul < prev    next >
Extensible Markup Language  |  2010-02-02  |  2KB  |  59 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  4. <?xml-stylesheet href="chrome://weave/content/login.css" type="text/css"?>
  5.  
  6. <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  7.         id="change-dialog"
  8.         windowtype="Weave:ChangeSomething"
  9.         buttons="accept,cancel"
  10.         ondialogcancel="return true;"
  11.         defaultButton="accept">
  12.  
  13.   <script type="application/x-javascript" src="chrome://weave/content/load-weave.js"/>
  14.   <script type="application/x-javascript" src="chrome://weave/content/generic-change.js"/>
  15.  
  16.   <stringbundleset id="stringbundleset">
  17.     <stringbundle id="weaveStringBundle" src="chrome://weave/locale/generic-change.properties"/>
  18.   </stringbundleset>
  19.  
  20.   <hbox align="center">
  21.     <label class="title" id="mainTitle"/>
  22.   </hbox>
  23.  
  24.   <vbox>
  25.     <grid>
  26.       <columns>
  27.         <column pack="left" align="right"/>
  28.         <column/>
  29.       </columns>
  30.       <rows>
  31.         <row id="oldBoxRow" align="center" hidden="true">
  32.           <hbox flex="1" align="right">
  33.             <label id="currentBoxLabel"/>
  34.           </hbox>
  35.           <textbox id="currentBoxText" type="password"/>
  36.         </row>
  37.         <row align="center">
  38.           <hbox flex="1" align="right">
  39.             <label id="textBox1Label"/>
  40.           </hbox>
  41.           <textbox id="textBox1" type="password"/>
  42.         </row>
  43.         <row align="center">
  44.           <hbox flex="1" align="right">
  45.             <label id="textBox2Label"/>
  46.           </hbox>
  47.           <textbox id="textBox2" type="password"/>
  48.         </row>
  49.         <row><label value=""/></row>
  50.       </rows>
  51.     </grid>
  52.  
  53.     <hbox align="center">
  54.       <image id="mainStatusIcon" class="statusIcon"/>
  55.       <label id="mainStatus" class="status"/>
  56.     </hbox>
  57.   </vbox>
  58. </dialog>
  59.